home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / Shape / MakeNet.bat next >
Encoding:
DOS Batch File  |  2004-10-22  |  322 b   |  22 lines

  1. CLS
  2.  
  3. ECHO *** Deleting old executable (if present) ***
  4. IF EXIST ShapeChanger.exe DEL ShapeChanger.exe
  5. ECHO.
  6.  
  7.  
  8. ECHO *** Compiling ShapeChanger.dpr ***
  9. dccil ShapeChanger.dpr
  10. IF ERRORLEVEL 1 GOTO BadExit
  11.  
  12.  
  13. GOTO Exit
  14.  
  15. :BadExit
  16.  
  17. ECHO.
  18. ECHO An error occurred during the build process
  19. PAUSE
  20. GOTO Exit
  21.  
  22. :Exit